home *** CD-ROM | disk | FTP | other *** search
/ Practical Internet Web Designer 86 / PIWD86.iso / pc / contents / illustration / software / Installer / data1.cab / Program_Files / Presets / Scripts / Add Watermark.js next >
Text File  |  2001-11-29  |  676b  |  32 lines

  1. // Add watermark to activeDocument
  2.  
  3. var docCount = documents.length;
  4.  
  5. var docCount = documents.length;
  6.  
  7. if (docCount == 0)
  8. {
  9.    documents.add();
  10. }
  11.  
  12. var docRef = documents[0];
  13. var destLayerRef = docRef.layers.add();
  14. destLayerRef.name = "Watermark";
  15.  
  16. var textRef = destLayerRef.textArtItems.add();
  17. textRef.contents = "DRAFT";
  18. textRef.opacity = 42;
  19.  
  20. var docHeight = docRef.height;
  21. var docWidth = docRef.width;
  22. textRef.height = docHeight/2;
  23. textRef.width =  docWidth;
  24.  
  25. textRef.rotate(45, undefined, undefined, undefined, undefined, Transformation.CENTER);
  26.  
  27. textRef.width =  docWidth;
  28. textRef.height = docHeight;
  29. textRef.position = [0, docHeight];
  30.  
  31.  
  32.